encoding/binary.littleEndian.PutUint32 (method, view implemented interface methods)
25 uses
encoding/binary (current package)
binary.go#L84: func (littleEndian) PutUint32(b []byte, v uint32) {
compress/gzip
gzip.go#L160: le.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))
gzip.go#L246: le.PutUint32(z.buf[:4], z.digest)
gzip.go#L247: le.PutUint32(z.buf[4:8], z.size)
crypto/md5
md5.go#L170: binary.LittleEndian.PutUint32(digest[0:], d.s[0])
md5.go#L171: binary.LittleEndian.PutUint32(digest[4:], d.s[1])
md5.go#L172: binary.LittleEndian.PutUint32(digest[8:], d.s[2])
md5.go#L173: binary.LittleEndian.PutUint32(digest[12:], d.s[3])
github.com/gotd/td/bin
encode.go#L68: binary.LittleEndian.PutUint32(t, v)
github.com/gotd/td/internal/mtproxy/faketls
client_hello.go#L118: binary.LittleEndian.PutUint32(b.Buf[randomOffset+28:randomOffset+32], old)
github.com/gotd/td/internal/proto/codec
abridged.go#L106: binary.LittleEndian.PutUint32(buf[1:], uint32(encodeLength))
github.com/gotd/td/session/tdesktop
file.go#L126: binary.LittleEndian.PutUint32(packedLength[:], uint32(len(data)))
github.com/klauspost/compress/gzip
gzip.go#L192: le.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))
gzip.go#L286: le.PutUint32(z.buf[:4], z.digest)
gzip.go#L287: le.PutUint32(z.buf[4:8], z.size)
nhooyr.io/websocket
frame.go#L166: binary.LittleEndian.PutUint32(buf, h.maskKey)
frame.go#L285: binary.LittleEndian.PutUint32(b, v^key)
vendor/golang.org/x/crypto/chacha20
chacha_generic.go#L389: binary.LittleEndian.PutUint32(out[0:4], x0)
chacha_generic.go#L390: binary.LittleEndian.PutUint32(out[4:8], x1)
chacha_generic.go#L391: binary.LittleEndian.PutUint32(out[8:12], x2)
chacha_generic.go#L392: binary.LittleEndian.PutUint32(out[12:16], x3)
chacha_generic.go#L393: binary.LittleEndian.PutUint32(out[16:20], x12)
chacha_generic.go#L394: binary.LittleEndian.PutUint32(out[20:24], x13)
chacha_generic.go#L395: binary.LittleEndian.PutUint32(out[24:28], x14)
chacha_generic.go#L396: binary.LittleEndian.PutUint32(out[28:32], x15)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |